home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19980424-19980901 / 000054_news@newsmaster….columbia.edu _Wed May 6 15:07:14 1998.msg < prev    next >
Internet Message Format  |  2020-01-01  |  4KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id PAA11023
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Wed, 6 May 1998 15:07:14 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id PAA11126
  7.     for kermit.misc@watsun; Wed, 6 May 1998 15:07:13 -0400 (EDT)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: Problems with modems & HP-UX 10.20
  12. Date: 6 May 1998 19:07:11 GMT
  13. Organization: Columbia University
  14. Lines: 93
  15. Message-ID: <6iqccv$8ip$1@apakabar.cc.columbia.edu>
  16. References: <355094DE.30DEFECF@hp.com>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:8706
  19.  
  20. In article <355094DE.30DEFECF@hp.com>,
  21. Miguel Angel Turrado  <miguel-angel_turrado@hp.com> wrote:
  22. : We want to use kermit 6.0 in a HP-UX 10.20 machine with a multitech
  23. : modem.
  24. :
  25. : With the 'cu' command all work properly (cu -s9600 -lcul0p7 dir),
  26. : it responds to 'at' commands, and we can connect to the other machine.
  27. :     We'd like to use kermit. We use:
  28. :         set modem direct
  29. :         set line /dev/cul0p7
  30. :         set speed 9600
  31. :         set parity none
  32. :     and then, 'connect'. The system responds:
  33. :     "Connecting to /dev/cul0p7, speed 9600
  34. :     The escape character is Ctrl-\ (ASCII 28, FS)
  35. :     Type the escape character followed by C to get back,
  36. :     or followed by ? to see other options"
  37. : and we can't write anything else (for example an 'at' command, atdt
  38. : 02633340). If we write the scape character with 's' , we see:
  39. :         CD: Off
  40. :         DSR: Off
  41. :         CTS: Off
  42. :         RI: On
  43. :         DTR: On
  44. :         RTS: Off
  45. : By other way, if we try to use the 'dial' command, kermit
  46. : answers that we must SET MODEM first, because it seems that with
  47. : 'direct' it doesn't work. Instead, with 'SET MODEM MULTITECH', we can
  48. : dial. Kermit answers:
  49. :         "Trying 02633340 ...
  50. :         Device /dev/cul0p7, modem: multitech, speed 9600
  51. :         Dial timeout: 43 seconds
  52. :         To cancel: type your interrupt character (normally Ctrl-C)."
  53. : But nothing else appears, and  after several minutes without
  54. : answer, we need to press Ctrl-C.
  55. : If we try now (with the modem defined like multitech, non like
  56. : direct) the command 'connect', kermit answers:
  57. :        "Connecting to /dev/cul0p7, speed 9600
  58. :         The escape character is Ctrl-\ (ASCII 28, FS)
  59. :         Type the escape character followed by C to get back,
  60. :         or followed by ? to see other options"
  61. : and the system hangs, and we need to execute a 'kill' of the
  62. : process
  63. : Are we doing anything wrong? Do you know other way to get connection
  64. : with the other machine?
  65. If you want to use the DIAL command (which is the recommended method for
  66. making a dialed connection), then:
  67.  
  68.   set modem type multitech
  69.   set line /dev/cul0p7
  70.   set speed 9600
  71.   set parity none
  72.   set dial display on
  73.   dial 02633340
  74.   if success connect ; or whatever...
  75.  
  76. If you want to CONNECT to the modem and type AT commands it at:
  77.  
  78.   set modem type none
  79.   set line /dev/cul0p7
  80.   set speed 9600
  81.   set parity none
  82.   set carrier-watch off
  83.   connect
  84.  
  85. If these do not work, something is wrong.  Let's consider only the DIAL
  86. command.  Use the sequence above and see what is shown while the DIAL command
  87. is working.  If the cause of the problem does not become obvious to you,
  88. send the details by email to kermit-support@columbia.edu.
  89.  
  90. However, there are a few other, non-Kermit, items regarding changes (or bugs)
  91. in HP-UX that occurred after 10.00 and after C-Kermit 6.0 was released.  These
  92. can be addressed by installing HP-UX patches and/or a rebuilt Kermit program.
  93. We will be announcing a public Beta test of C-Kermit 6.1 soon that addresses
  94. these issues.
  95.  
  96. Watch this space for announcements.
  97.  
  98. - Frank